home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / samba / smb.conf < prev    next >
Text File  |  2006-01-30  |  21KB  |  496 lines

  1. # This is the main Samba configuration file. You should read the
  2. # smb.conf(5) manual page in order to understand the options listed
  3. # here. Samba has a huge number of configurable options (perhaps too
  4. # many!) most of which are not shown in this example
  5. #
  6. # Any line which starts with a ; (semi-colon) or a # (hash) 
  7. # is a comment and is ignored. In this example we will use a #
  8. # for commentry and a ; for parts of the config file that you
  9. # may wish to enable
  10. #
  11. # NOTE: Whenever you modify this file you should run the command "testparm"
  12. # to check that you have not made any basic syntactic errors. 
  13. #
  14. #======================= Global Settings =====================================
  15. [global]
  16.  
  17. # 1. Server Naming Options:
  18. # workgroup = NT-Domain-Name or Workgroup-Name
  19.    workgroup = WORKGROUP
  20.  
  21. # netbios name is the name you will see in "Network Neighbourhood",
  22. # but defaults to your hostname
  23. ;  netbios name = <name_of_this_server>
  24.  
  25. # server string is the equivalent of the NT Description field
  26.    server string = Samba Server %v
  27.  
  28. # Message command is run by samba when a "popup" message is sent to it.
  29. # The example below is for use with LinPopUp:
  30. ; message command = /usr/bin/linpopup "%f" "%m" %s; rm %s
  31.  
  32. # 2. Printing Options:
  33. # CHANGES TO ENABLE PRINTING ON ALL CUPS PRINTERS IN THE NETWORK
  34. # if you want to automatically load your printer list rather
  35. # than setting them up individually then you'll need this
  36.    printcap name = cups
  37.    load printers = yes
  38.  
  39. # It should not be necessary to spell out the print system type unless
  40. # yours is non-standard. Currently supported print systems include:
  41. # bsd, sysv, plp, lprng, aix, hpux, qnx, cups
  42.    printing = cups
  43.  
  44. # Samba 3.x supports the Windows NT-style point-and-print feature. To
  45. # use this, you need to be able to upload print drivers to the samba
  46. # server. The printer admins (or root) may install drivers onto samba.
  47. # Note that this feature uses the print$ share, so you will need to 
  48. # enable it below.
  49. # printer admin = @<group> <user>
  50.    printer admin = @adm
  51. # This should work well for winbind:
  52. ;   printer admin = @"Domain Admins"
  53.  
  54. # 3. Logging Options:
  55. # this tells Samba to use a separate log file for each machine
  56. # that connects
  57.    log file = /var/log/samba3/log.%m
  58.  
  59. # Put a capping on the size of the log files (in Kb).
  60.    max log size = 50
  61.  
  62. # Set the log (verbosity) level (0 <= log level <= 10)
  63. ; log level = 3
  64.  
  65. # 4. Security and Domain Membership Options:
  66. # This option is important for security. It allows you to restrict
  67. # connections to machines which are on your local network. The
  68. # following example restricts access to two C class networks and
  69. # the "loopback" interface. For more examples of the syntax see
  70. # the smb.conf man page. Do not enable this if (tcp/ip) name resolution does
  71. # not work for all the hosts in your network.
  72. ;   hosts allow = 192.168.1. 192.168.2. 127.
  73.  
  74. # Uncomment this if you want a guest account, you must add this to /etc/passwd
  75. # otherwise the user "nobody" is used
  76. ;  guest account = pcguest
  77. # Allow users to map to guest:
  78.   map to guest = bad user
  79.  
  80. # Security mode. Most people will want user level security. See
  81. # security_level.txt for details.
  82.    security = user
  83. # Use password server option only with security = server or security = domain
  84. # When using security = domain, you should use password server = *
  85. ;   password server = <NT-Server-Name>
  86. ;   password server = *
  87.  
  88. # Password Level allows matching of _n_ characters of the password for
  89. # all combinations of upper and lower case.
  90. ;  password level = 8
  91. ;  username level = 8
  92.  
  93. # You may wish to use password encryption. Please read
  94. # ENCRYPTION.txt, Win95.txt and WinNT.txt in the Samba documentation.
  95. # Do not enable this option unless you have read those documents
  96. # Encrypted passwords are required for any use of samba in a Windows NT domain
  97. # The smbpasswd file is only required by a server doing authentication, thus
  98. # members of a domain do not need one.
  99.   encrypt passwords = yes
  100.   smb passwd file = /etc/samba/private/smbpasswd
  101.  
  102. # The following are needed to allow password changing from Windows to
  103. # also update the Linux system password.
  104. # NOTE: Use these with 'encrypt passwords' and 'smb passwd file' above.
  105. # NOTE2: You do NOT need these to allow workstations to change only
  106. #        the encrypted SMB passwords. They allow the Unix password
  107. #        to be kept in sync with the SMB password.
  108. ;  unix password sync = Yes
  109. # You either need to setup a passwd program and passwd chat, or
  110. # enable pam password change
  111. ;  pam password change = yes
  112. ;  passwd program = /usr/bin/passwd %u
  113. ;  passwd chat = *New*UNIX*password* %n\n *Re*ype*new*UNIX*password* %n\n \
  114. ;*passwd:*all*authentication*tokens*updated*successfully*
  115.  
  116. # Unix users can map to different SMB User names
  117. ;  username map = /etc/samba/smbusers
  118.  
  119. # Using the following line enables you to customise your configuration
  120. # on a per machine basis. The %m gets replaced with the netbios name
  121. # of the machine that is connecting
  122. ;   include = /etc/samba/smb.conf.%m
  123.  
  124. # Options for using winbind. Winbind allows you to do all account and
  125. # authentication from a Windows or samba domain controller, creating
  126. # accounts on the fly, and maintaining a mapping of Windows RIDs to unix uid's 
  127. # and gid's. idmap uid and idmap gid are the only required parameters.
  128. #
  129. # winbind separator is the character a user must use between their domain
  130. # name and username, defaults to "\"
  131. ;  winbind separator = +
  132. #
  133. # winbind use default domain allows you to have winbind return usernames
  134. # in the form user instead of DOMAIN+user for the domain listed in the
  135. # workgroup parameter.
  136. ;  winbind use default domain = yes
  137. #
  138. # template homedir determines the home directory for winbind users, with 
  139. # %D expanding to their domain name and %U expanding to their username:
  140. ;  template homedir = /home/%D/%U
  141.  
  142. # When using winbind, you may want to have samba create home directories
  143. # on the fly for authenticated users. Ensure that /etc/pam.d/samba is
  144. # using 'service=system-auth-winbind' in pam_stack modules, and then
  145. # enable obedience of pam restrictions below:
  146. ;  obey pam restrictions = yes
  147.  
  148. #
  149. # template shell determines the shell users authenticated by winbind get
  150. ;  template shell = /bin/bash
  151.  
  152. # 5. Browser Control and Networking Options:
  153. # Most people will find that this option gives better performance.
  154. # See speed.txt and the manual pages for details
  155.    socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
  156.  
  157. # Configure Samba to use multiple interfaces
  158. # If you have multiple network interfaces then you must list them
  159. # here. See the man page for details.
  160. ;   interfaces = 192.168.12.2/24 192.168.13.2/24 
  161.  
  162. # Configure remote browse list synchronisation here
  163. #  request announcement to, or browse list sync from:
  164. #       a specific host or from / to a whole subnet (see below)
  165. ;   remote browse sync = 192.168.3.25 192.168.5.255
  166. # Cause this host to announce itself to local subnets here
  167. ;   remote announce = 192.168.1.255 192.168.2.44
  168.  
  169. # set local master to no if you don't want Samba to become a master
  170. # browser on your network. Otherwise the normal election rules apply
  171. ;   local master = no
  172.  
  173. # OS Level determines the precedence of this server in master browser
  174. # elections. The default value should be reasonable
  175. ;   os level = 33
  176.  
  177. # Domain Master specifies Samba to be the Domain Master Browser. This
  178. # allows Samba to collate browse lists between subnets. Don't use this
  179. # if you already have a Windows NT domain controller doing this job
  180. ;   domain master = yes 
  181.  
  182. # Preferred Master causes Samba to force a local browser election on startup
  183. # and gives it a slightly higher chance of winning the election
  184. ;   preferred master = yes
  185.  
  186. # 6. Domain Control Options:
  187. # Enable this if you want Samba to be a domain logon server for 
  188. # Windows95 workstations or Primary Domain Controller for WinNT and Win2k
  189. ;   domain logons = yes
  190.  
  191. # if you enable domain logons then you may want a per-machine or
  192. # per user logon script
  193. # run a specific logon batch file per workstation (machine)
  194. ;   logon script = %m.bat
  195. # run a specific logon batch file per username
  196. ;   logon script = %U.bat
  197.  
  198. # Where to store roaming profiles for WinNT and Win2k
  199. #        %L substitutes for this servers netbios name, %U is username
  200. #        You must uncomment the [Profiles] share below
  201. ;   logon path = \\%L\Profiles\%U
  202.  
  203. # Where to store roaming profiles for Win9x. Be careful with this as it also
  204. # impacts where Win2k finds it's /HOME share
  205. ; logon home = \\%L\%U\.profile
  206.  
  207.  
  208. # The add user script is used by a domain member to add local user accounts
  209. # that have been authenticated by the domain controller, or when adding
  210. # users via the Windows NT Tools (ie User Manager for Domains).
  211.  
  212. # Scripts for file (passwd, smbpasswd) backend:
  213. ; add user script = /usr/sbin/useradd -s /bin/false '%u'
  214. ; delete user script = /usr/sbin/userdel '%s'
  215. ; add user to group script = /usr/bin/gpasswd -a '%u' '%g'
  216. ; delete user from group script = /usr/bin/gpasswd -d '%u' '%g'
  217. ; set primary group script = /usr/sbin/usermod -g '%g' '%u'
  218. ; add group script = /usr/sbin/groupadd %g && getent group '%g'|awk -F: '{print $3}'
  219. ; delete group script = /usr/sbin/groupdel '%g'
  220.  
  221. # Scripts for LDAP backend (assumes nss_ldap is in use on the domain controller.
  222. # Needs IDEALX scripts, and configuration in smbldap_conf.pm.
  223. # This assumes you've installed the IDEALX scripts into /usr/share/samba/scripts...
  224. ; add user script = /usr/share/samba/scripts/smbldap-useradd.pl '%u'
  225. ; delete user script = /usr/share/samba/scripts/smbldap-userdel.pl '%u'
  226. ; add user to group script = /usr/share/samba/scripts/smbldap-groupmod.pl -m '%u' '%g'
  227. ; delete user from group script = /usr/share/samba/scripts/smbldap-groupmod.pl -x '%u' '%g'
  228. ; set primary group script = /usr/share/samba/scripts/smbldap-usermod.pl -g '%g' '%u'
  229. ; add group script = /usr/share/samba/scripts/smbldap-groupadd.pl '%g' && /usr/share/samba/scripts/smbldap-groupshow.pl %g|awk '/^gidNumber:/ {print $2}'
  230. ; delete group script = /usr/share/samba/scripts/smbldap-userdel.pl '%g'
  231.  
  232.  
  233. # The add machine script is use by a samba server configured as a domain
  234. # controller to add local machine accounts when adding machines to the domain.
  235. # The script must work from the command line when replacing the macros,
  236. # or the operation will fail. Check that groups exist if forcing a group.
  237. # Script for domain controller for adding machines:
  238. ; add machine script = /usr/sbin/useradd -d /dev/null -g machines -c 'Machine Account' -s /bin/false -M '%u'
  239. # Script for domain controller with LDAP backend for adding machines (You need
  240. # the IDEALX scripts, and to configure the smbldap_conf.pm first):
  241. ; add machine script = /usr/share/samba/scripts/smbldap-useradd.pl -w -d /dev/null -g machines -c 'Machine Account' -s /bin/false '%u'
  242.  
  243. # Domain groups:
  244. # Domain groups are now configured by using the 'net groupmap' tool
  245.  
  246. # Samba Password Database configuration:
  247. # Samba now has runtime-configurable password database backends. Multiple
  248. # passdb backends may be used, but users will only be added to the first one
  249. # Default:
  250. ; passdb backend = smbpasswd guest
  251. # TDB backen with fallback to smbpasswd and guest
  252. ; passdb backend = tdbsam smbpasswd guest
  253. # LDAP with fallback to smbpasswd guest
  254. # Enable SSL by using an ldaps url, or enable tls with 'ldap ssl' below.
  255. ; passdb backend = ldapsam:ldaps://ldap.mydomain.com smbpasswd guest
  256. # Use the samba2 LDAP schema:
  257. ; passdb backend = ldapsam_compat:ldaps://ldap.mydomain.com smbpasswd guest
  258.  
  259. # idmap uid account range:
  260. # This is a range of unix user-id's that samba will map non-unix RIDs to,
  261. # such as when using Winbind
  262. ; idmap uid = 10000-20000
  263. ; idmap gid = 10000-20000
  264.   
  265. # LDAP configuration for Domain Controlling:
  266. # The account (dn) that samba uses to access the LDAP server
  267. # This account needs to have write access to the LDAP tree
  268. # You will need to give samba the password for this dn, by 
  269. # running 'smbpasswd -w mypassword'
  270. ; ldap admin dn = cn=root,dc=mydomain,dc=com
  271. ; ldap ssl = start_tls
  272. # start_tls should run on 389, but samba defaults incorrectly to 636
  273. ; ldap port = 389
  274. ; ldap suffix = dc=mydomain,dc=com
  275. ; ldap server = ldap.mydomain.com
  276. # Seperate suffixes are available for machines, users, groups, and idmap, if 
  277. # ldap suffix appears first, it is appended to the specific suffix.
  278. # Example for a unix-ish directory layout:
  279. ; ldap machine suffix = ou=Hosts
  280. ; ldap user suffix = ou=People
  281. ; ldap group suffix = ou=Group
  282. ; ldap idmap suffix = ou=Idmap
  283. # Example for AD-ish layout:
  284. ; ldap machine suffix = cn=Computers
  285. ; ldap user suffix = cn=Users
  286. ; ldap group suffix = cn=Groups
  287. ; ldap idmap suffix = cn=Idmap
  288.  
  289.  
  290. # 7. Name Resolution Options:
  291. # All NetBIOS names must be resolved to IP Addresses
  292. # 'Name Resolve Order' allows the named resolution mechanism to be specified
  293. # the default order is "host lmhosts wins bcast". "host" means use the unix
  294. # system gethostbyname() function call that will use either /etc/hosts OR
  295. # DNS or NIS depending on the settings of /etc/host.config, /etc/nsswitch.conf
  296. # and the /etc/resolv.conf file. "host" therefore is system configuration
  297. # dependant. This parameter is most often of use to prevent DNS lookups
  298. # in order to resolve NetBIOS names to IP Addresses. Use with care!
  299. # The example below excludes use of name resolution for machines that are NOT
  300. # on the local network segment
  301. # - OR - are not deliberately to be known via lmhosts or via WINS.
  302. ; name resolve order = wins lmhosts bcast
  303.  
  304. # Windows Internet Name Serving Support Section:
  305. # WINS Support - Tells the NMBD component of Samba to enable it's WINS Server
  306. ;   wins support = yes
  307.  
  308. # WINS Server - Tells the NMBD components of Samba to be a WINS Client
  309. #       Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
  310. ;   wins server = w.x.y.z
  311.  
  312. # WINS Proxy - Tells Samba to answer name resolution queries on
  313. # behalf of a non WINS capable client, for this to work there must be
  314. # at least one  WINS Server on the network. The default is NO.
  315. ;   wins proxy = yes
  316.  
  317. # DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
  318. # via DNS nslookups. The built-in default for versions 1.9.17 is yes,
  319. # this has been changed in version 1.9.18 to no.
  320.    dns proxy = no 
  321.  
  322. # 8. File Naming Options:
  323. # Case Preservation can be handy - system default is _no_
  324. # NOTE: These can be set on a per share basis
  325. ;  preserve case = no
  326. ;  short preserve case = no
  327. # Default case is normally upper case for all DOS files
  328. ;  default case = lower
  329. # Be very careful with case sensitivity - it can break things!
  330. ;  case sensitive = no
  331.  
  332. # Enabling internationalization:
  333. # you can match a Windows code page with a UNIX character set.
  334. # Windows: 437 (US), 737 (GREEK), 850 (Latin1 - Western European),
  335. # 852 (Czech), 861 (???), 932 (Japanese),
  336. # 936 (Simplified Chin.), 949 (Korean Hangul),
  337. # 950 (Trad. Chin.).
  338. # More detail about code page is in
  339. # "http://www.microsoft.com/globaldev/reference/oslocversion.mspx"
  340. # UNIX: ISO8859-1 (Western European), ISO8859-2 (Eastern Eu.),
  341. # ISO8859-5 (Russian Cyrillic), KOI8-R (Alt-Russ. Cyril.)
  342. # This is an example for french users:
  343. ;   dos charset = 850
  344. ;   unix charset = ISO8859-1
  345.  
  346.  
  347. #============================ Share Definitions ==============================
  348. [homes]
  349.    comment = Home Directories
  350.    browseable = no
  351.    writable = yes
  352. # You can enable VFS recycle bin on a per share basis:
  353. # Uncomment the next 2 lines (make sure you create a
  354. # .recycle folder in the base of the share and ensure
  355. # all users will have write access to it. See
  356. # examples/VFS/recycle/REAME in the samba docs for details
  357. ;   vfs object = /usr/lib/samba/vfs/recycle.so
  358.  
  359. # Un-comment the following and create the netlogon directory for Domain Logons
  360. ; [netlogon]
  361. ;   comment = Network Logon Service
  362. ;   path = /var/lib/samba/netlogon
  363. ;   guest ok = yes
  364. ;   writable = no
  365.  
  366. # Un-comment the following to provide a specific roving profile share
  367. # the default is to use the user's home directory
  368. ;[Profiles]
  369. ;    path = /var/lib/samba/profiles
  370. ;    browseable = no
  371. ;    guest ok = yes
  372. # This script can be enabled to create profile directories on the fly
  373. # You may want to turn off guest acces if you enable this, as it
  374. # hasn't been thoroughly tested.
  375. ;root preexec = PROFILE=/var/lib/samba/profiles/%u; if [ ! -e $PROFILE ]; \
  376. ;                then mkdir -pm700 $PROFILE; chown %u:%g $PROFILE;fi
  377.  
  378. # NOTE: If you have a CUPS print system there is no need to 
  379. # specifically define each individual printer.
  380. # You must configure the samba printers with the appropriate Windows
  381. # drivers on your Windows clients. On the Samba server no filtering is
  382. # done. If you wish that the server provides the driver and the clients
  383. # send PostScript ("Generic PostScript Printer" under Windows), you have
  384. # to swap the 'print command' line below with the commented one.
  385. [printers]
  386.    comment = All Printers
  387.    path = /var/spool/samba
  388.    browseable = no
  389. # to allow user 'guest account' to print.
  390.    guest ok = yes
  391.    writable = no
  392.    printable = yes
  393.    create mode = 0700
  394. # =====================================
  395. # print command: see above for details.
  396. # =====================================
  397.    print command = lpr-cups -P %p -o raw %s -r   # using client side printer drivers.
  398. ;   print command = lpr-cups -P %p %s # using cups own drivers (use generic PostScript on clients).
  399. # The following two commands are the samba defaults for printing=cups
  400. # change them only if you need different options:
  401. ;   lpq command = lpq -P %p
  402. ;   lprm command = cancel %p-%j
  403.  
  404. # This share is used for Windows NT-style point-and-print support.
  405. # To be able to install drivers, you need to be either root, or listed
  406. # in the printer admin parameter above. Note that you also need write access
  407. # to the directory and share definition to be able to upload the drivers.
  408. # For more information on this, please see the Printing Support Section of
  409. # /usr/share/doc/samba-<version>/Samba-HOWTO-Collection.pdf 
  410. [print$]
  411.    path = /var/lib/samba/printers
  412.    browseable = yes
  413.    read only = yes
  414.    write list = @adm root
  415.    guest ok = yes
  416.  
  417. # This one is useful for people to share files
  418. ;[tmp]
  419. ;   comment = Temporary file space
  420. ;   path = /tmp
  421. ;   read only = no
  422. ;   public = yes
  423.  
  424. # A publicly accessible directory, but read only, except for people in
  425. # the "staff" group
  426. ;[public]
  427. ;   comment = Public Stuff
  428. ;   path = /home/samba/public
  429. ;   public = yes
  430. ;   writable = no
  431. ;   write list = @staff
  432. # Audited directory through experimental VFS audit.so module:
  433. # Uncomment next line.
  434. ;   vfs object = /usr/lib/samba/vfs/audit.so
  435.  
  436. # Other examples. 
  437. #
  438. # A private printer, usable only by Fred. Spool data will be placed in Fred's
  439. # home directory. Note that fred must have write access to the spool directory,
  440. # wherever it is.
  441. ;[fredsprn]
  442. ;   comment = Fred's Printer
  443. ;   valid users = fred
  444. ;   path = /homes/fred
  445. ;   printer = freds_printer
  446. ;   public = no
  447. ;   writable = no
  448. ;   printable = yes
  449.  
  450. # A private directory, usable only by Fred. Note that Fred requires write
  451. # access to the directory.
  452. ;[fredsdir]
  453. ;   comment = Fred's Service
  454. ;   path = /usr/somewhere/private
  455. ;   valid users = fred
  456. ;   public = no
  457. ;   writable = yes
  458. ;   printable = no
  459.  
  460. # a service which has a different directory for each machine that connects
  461. # this allows you to tailor configurations to incoming machines. You could
  462. # also use the %u option to tailor it by user name.
  463. # The %m gets replaced with the machine name that is connecting.
  464. ;[pchome]
  465. ;  comment = PC Directories
  466. ;  path = /usr/pc/%m
  467. ;  public = no
  468. ;  writable = yes
  469.  
  470. # A publicly accessible directory, read/write to all users. Note that all files
  471. # created in the directory by users will be owned by the default user, so
  472. # any user with access can delete any other user's files. Obviously this
  473. # directory must be writable by the default user. Another user could of course
  474. # be specified, in which case all files would be owned by that user instead.
  475. ;[public]
  476. ;   path = /usr/somewhere/else/public
  477. ;   public = yes
  478. ;   only guest = yes
  479. ;   writable = yes
  480. ;   printable = no
  481.  
  482. # The following two entries demonstrate how to share a directory so that two
  483. # users can place files there that will be owned by the specific users. In this
  484. # setup, the directory should be writable by both users and should have the
  485. # sticky bit set on it to prevent abuse. Obviously this could be extended to
  486. # as many users as required.
  487. ;[myshare]
  488. ;   comment = Mary's and Fred's stuff
  489. ;   path = /usr/somewhere/shared
  490. ;   valid users = mary fred
  491. ;   public = no
  492. ;   writable = yes
  493. ;   printable = no
  494. ;   create mask = 0765
  495.  
  496.